Learn R Programming

LSRS (version 0.2.0)

Normalized Burn Ratio : Normalized Burn Ratio

Description

The Normalized Burn Ratio (NBR) was designed to highlight burned areas and estimate fire severity. The formula is similar to NDVI, except that it uses near-infrared (NIR) and shortwave-infrared (SWIR) wavelengths.

NBR=(NIR - SWIR) / (NIR + SWIR)

Usage

NBR(a = "NIR", b = "SWIR")

Arguments

a

NIR satellite band (format:TIF)

b

SWIR satellite band (format:TIF)

References

[1] USGS burn severity - Overview of applied remote sensing principles. [2] Norton, J.M. 2006. The use of remote sensing indices to determine wildland burn severity in semiarid sagebrush steppe rangelands using Landsat ETM+ and SPOT 5. MS Thesis, Idaho State University.

Examples

Run this code
# NOT RUN {
## The function is currently defined as
function (a = "NIR", b = "SWIR")
{
    name=NBR(a,b)
areaXY <-c(xmin, xmax, ymin, ymax)
cropXY <- crop(name, areaXY)
plot(cropXY,lwd=4,
     main="NBR",
     xlab="easting", ylab="northing")
hist(cropXY,
     main="Histogram of NBR"
     ,
     xlab="NBR",col="red", ylab="Frequency of Pixels")
     }
# }

Run the code above in your browser using DataLab